c80e9739af7114aa7b5526492fda368b2ace0a76,Mage/src/mage/abilities/costs/common/TapTargetCost.java,TapTargetCost,TapTargetCost,#TargetControlledPermanent#,49
Before Change
public TapTargetCost(TargetControlledPermanent target) {
this.target = target;
this.text = "Tap " + target.getMaxNumberOfTargets() + " " + target.getTargetName();
}
public TapTargetCost(final TapTargetCost cost) {
After Change
public TapTargetCost(TargetControlledPermanent target) {
this.target = target;
this.text =
new StringBuilder("Tap ")
.append(target.getTargetName().startsWith("a ") || target.getTargetName().startsWith("an ") ? "":target.getMaxNumberOfTargets())
.append(" ")
.append(target.getTargetName()).toString();
}
public TapTargetCost(final TapTargetCost cost) {